home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 026a / calend.zip / CALEND.DOC next >
Text File  |  1991-04-15  |  5KB  |  116 lines

  1. CALEND.PRG              (c) 1991 BKMA Inc
  2. ----------              206-297-4717, 297-7517, Fax 297-7517 Ext 329
  3.  
  4.    This program is the property of BKMA Inc. You may freely use this program
  5.    WITHOUT FEE in private and commerical environments, provided this code is
  6.    not modified in anywhere, including the copyright notice at the end of
  7.    the calendar printout.
  8.  
  9.    Use:
  10.            DO CALEND WITH 'datefield','textfields','title'
  11.  
  12.    datefield       is the NAME of the field containing DATES
  13.    textfields      is the NAME of the text to be printed, it may be
  14.                    the combining of several fields, i.e.
  15.                    TODO+APPOINT+SHOPLIST
  16.    title           is the title, or a variable containing the title.
  17.  
  18.    If you file consists of SHIPDATE, SHIPMENT
  19.            DO CALEND WITH 'SHIPDATE','SHIPMENT','Example Printoff' is right
  20.            DO CALEND WITH SHIPDATE,SHIPMENT,'Example Printoff' is WRONG
  21.  
  22. A simple demo is included:
  23.  
  24.         USE CALENDAR.CAL  && A Dbase File
  25.         DO CALEND WITH 'DATE','EVENT','Example of The Calendar Print'
  26.  
  27.  
  28. Example of print out
  29. ====================
  30. 04/01/91 - 04/13/91                                                 D:CALENDAR.CAL
  31.  
  32.  Sunday    Monday    Tuesday   Wednesday Thursday  Friday    Saturday  Month
  33.  
  34. ╔═════════╦═════════╦═════════╦═════════╦═════════╦═════════╦═════════╗March
  35. ║31       ║ 1       ║ 2       ║ 3       ║ 4       ║ 5       ║ 6       ║
  36. ║         ║         ║         ║         ║This     ║Hello    ║         ║
  37. ║         ║         ║         ║         ║program  ║There    ║         ║
  38. ╠═════════╬═════════╬═════════╬═════════╬═════════╬═════════╬═════════╣April
  39. ║ 7       ║ 8       ║ 9       ║10       ║11       ║12       ║13       ║
  40. ║Showed   ║         ║         ║         ║         ║         ║         ║
  41. ║things   ║         ║         ║         ║         ║         ║         ║
  42. ╠═════════╬═════════╬═════════╬═════════╬═════════╬═════════╬═════════╣April
  43. ║14       ║15       ║16       ║17       ║18       ║19       ║20       ║
  44. ║         ║         ║         ║         ║         ║         ║         ║
  45. ║         ║         ║         ║         ║         ║         ║         ║
  46. ╚═════════╩═════════╩═════════╩═════════╩═════════╩═════════╩═════════╝April
  47.  
  48.  
  49.  
  50. Portions (c)1991 Bainbridge Knowledge Management Arts, Inc. 206-297-4717 
  51. ALL RIGHTS RESERVED - DO CALEND with '?','?','?'  for license information
  52.  
  53. This was produced from the following file:
  54.  
  55. Record#  DATE     EVENT
  56.       1  04/04/91 This program written                                        
  57.       2  04/05/91 Hello There                                                 
  58.       3  04/07/91 Showed things
  59.  
  60. FEATURES:
  61. ---------
  62.  
  63. TEXT WRAP
  64. =========
  65. Text will normally NOT be broken in the middle of the word, but it there
  66. is not enough space then it will:
  67.  
  68. For example:
  69.          Sund Mond Tues Wedn Thur Frid Satu Month
  70.         ╔════╦════╦════╦════╦════╦════╦════╗March
  71.         ║31  ║ 1  ║ 2  ║ 3  ║ 4  ║ 5  ║ 6  ║
  72.         ║    ║    ║    ║    ║This║Hell║    ║
  73.         ║    ║    ║    ║    ║    ║o   ║    ║
  74.         ║    ║    ║    ║    ║prog║Ther║    ║
  75.         ║    ║    ║    ║    ║ram ║e   ║    ║
  76.  
  77. PRINTERS
  78. ========
  79. The default printer is for an EPSON printer, the string is automatically read
  80. and saved to CALEND.CLM. If this file does not exists, then it is created
  81. with the default values.
  82.  
  83. MEMORY VARIABLES
  84. ================
  85. All of the memory variables used start with MC_... this reduces the chance of
  86. accidental changes of your program memory variables.
  87.  
  88. Source Code: $5.00, send to
  89.      BKMA
  90.      P.O.Box 170
  91.      Kingston Wa, 98346
  92.  
  93.     Select ONE per line:
  94.      Source: [ ] Clipper    [ ] dBase III
  95.              [ ] 3.5 Disk   [ ] 5.25 Disk   [ ] Printed
  96.              [ ] DD         [ ] HD
  97.  
  98.     * Compiled Clipper Performance is faster than an Epson can print
  99.  
  100. -------------------------------------------------------------------------
  101.     B.K.M.A. Inc. specializes in applications for:
  102.               Telephony
  103.               Education Administration
  104.               Scheduling, Production Planning and Control,
  105.                  Just-in-time Manufacturing, Operations Research
  106.               Artifical Intelligence
  107.  
  108.     in 'dBase',Javelin, Windows 3.0, C, QBASIC, etc...
  109.                       and
  110.     General PC and Application Support via Modem (CarbonCopy, PC Anywhere)
  111.     thru out North America.
  112.  
  113.                 We get your fat out of the fire!
  114. -------------------------------------------------------------------------
  115.  
  116.